home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / AMOSList / AMOSLIST.0997 / 000367_amos-request@svcs1.digex.net_Mon Sep 29 11:38:56 1997.msg < prev    next >
Text File  |  1997-10-01  |  2KB  |  56 lines

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224])
  2.     by mail4.access.digex.net (8.8.5/8.8.5) with ESMTP id LAA10083
  3.     for <mcox@access.digex.net>; Mon, 29 Sep 1997 11:38:55 -0400 (EDT)
  4. Received: (from daemon@localhost)
  5.     by svcs1.digex.net (8.8.5/8.8.5) id IAA18626
  6.     for amos-out; Mon, 29 Sep 1997 08:48:23 -0400 (EDT)
  7. Received: from mail3.access.digex.net (mail3.access.digex.net [205.197.247.4])
  8.     by svcs1.digex.net (8.8.5/8.8.5) with ESMTP id IAA18617
  9.     for <amos-list@svcs1.digex.net>; Mon, 29 Sep 1997 08:48:21 -0400 (EDT)
  10. Received: from firefox.modusmedia.com (earth.modusmedia.com [208.14.214.2])
  11.     by mail3.access.digex.net (8.8.5/8.8.5) with SMTP id IAA16749
  12.     for <amos-list@access.digex.net>; Mon, 29 Sep 1997 08:48:18 -0400 (EDT)
  13. From: Declan_Gorman@modusmedia.com
  14. Received: from [192.168.133.3] by firefox.modusmedia.com
  15.           via smtpd (for mail3.access.digex.net [205.197.247.4]) with SMTP; 29 Sep 1997 12:48:18 UT
  16. Received: from uue.modusmedia.com ([192.168.132.16])
  17.           by mmi-mailrelay.ModusMedia.com (Post.Office MTA v3.1
  18.           release PO205e ID# 0-0U10L2S100) with SMTP id AAC171
  19.           for <amos-list@access.digex.net>; Mon, 29 Sep 1997 06:59:38 -0600
  20. Received: from ccMail by uue.modusmedia.com
  21.   (IMA Internet Exchange 2.1 Enterprise) id 0001C41E; Mon, 29 Sep 97 06:53:46 -0600
  22. Mime-Version: 1.0
  23. Date: Mon, 29 Sep 1997 13:32:53 -0600
  24. Message-ID: <0001C41E.@modusmedia.com>
  25. Subject: Problem
  26. To: amos-list@access.digex.net
  27. Content-Type: text/plain; charset=US-ASCII
  28. Content-Transfer-Encoding: 7bit
  29. Content-Description: cc:Mail note part
  30. Status: O
  31. X-Status: 
  32.  
  33.      
  34.      The following is a routine I am using to print text on screen and give 
  35.      it a zone.  The text is taken from a memory bank address.
  36.      
  37.      N=1 : Window 1
  38.      For X=16 To 250 Step 75
  39.      For Y=8 To 256 Step 8
  40.      Text X,Y,Zone$(Peek$(Start(10)+Val(VCE$(N)),10),N)
  41.      Inc N
  42.      Next : Next
  43.      
  44.      When N=1, VCE$(1)="HousePiano" so the Text line would read
  45.      Text 16,8,Zone$("HousePiano",1)
  46.      
  47.      What this actually prints on screen is |Z0HousePiano|Z
  48.      
  49.      In direct mode, Text X,Y,Zone$(Peek$(Start(10)+Val(VCE$(N)),10),N) 
  50.      prints correctly on screen, ie. without the |Z0 added to the text.
  51.      
  52.      I am left thinking this is a bug within Amos or is it something I am 
  53.      doing wrong?  Any help would be appreciated.
  54.      
  55.      
  56.      Declan.